home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form form2
- AutoRedraw = -1 'True
- Caption = "About......"
- ClientHeight = 3132
- ClientLeft = 1584
- ClientTop = 2100
- ClientWidth = 5088
- ClipControls = 0 'False
- ControlBox = 0 'False
- ForeColor = &H00FFFFFF&
- Height = 3552
- Left = 1536
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3132
- ScaleWidth = 5088
- Top = 1728
- Width = 5184
- Begin Timer Timer1
- Left = 240
- Top = 2280
- End
- Begin CommandButton Command1
- Caption = "&OK"
- Height = 372
- Left = 2160
- TabIndex = 3
- Top = 2280
- Width = 972
- End
- Begin Line Line2
- X1 = 1440
- X2 = 840
- Y1 = 480
- Y2 = 600
- End
- Begin Line Line1
- X1 = 1200
- X2 = 840
- Y1 = 360
- Y2 = 600
- End
- Begin Shape Shape1
- Height = 492
- Left = 1200
- Shape = 2 'Oval
- Top = 120
- Width = 3132
- End
- Begin Label Label4
- Caption = "SpecialThanks to Alex at BitSoft "
- Height = 252
- Left = 1440
- TabIndex = 4
- Top = 240
- Width = 3132
- End
- Begin Image Image2
- Height = 612
- Left = 360
- Top = 360
- Width = 612
- End
- Begin Image Image1
- Height = 384
- Index = 1
- Left = 840
- Picture = LOTFRM2.FRX:0000
- Top = 2520
- Visible = 0 'False
- Width = 384
- End
- Begin Image Image1
- Height = 384
- Index = 0
- Left = 840
- Picture = LOTFRM2.FRX:0302
- Top = 2160
- Visible = 0 'False
- Width = 384
- End
- Begin Label Label3
- Caption = "100445.2626@compuserve.com"
- Height = 252
- Left = 1320
- TabIndex = 2
- Top = 1800
- Width = 2772
- End
- Begin Label Label2
- Alignment = 2 'Center
- Caption = "by Ian Riley"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "Times New Roman"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 372
- Left = 1440
- TabIndex = 1
- Top = 1320
- Width = 2292
- End
- Begin Label Label1
- Alignment = 2 'Center
- Caption = "Lottery Numbers"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "Times New Roman"
- FontSize = 18
- FontStrikethru = 0 'False
- FontUnderline = -1 'True
- Height = 372
- Left = 1200
- TabIndex = 0
- Top = 720
- Width = 3132
- End
- Sub Command1_Click ()
- Unload Me
- form1.Show
- End Sub
- Sub Form_Load ()
- timer1.Enabled = True
- timer1.Interval = 200
- End Sub
- Sub Timer1_Timer () ' Event occurs when timer reaches zero and resets
- Static i%
- If i = 0 Then
- i = 1
- Else
- i = 0
- End If
- image2 = image1(i)
- form1.Icon = image1(i)
- End Sub
-